3.1265 \(\int x^3 (a+b x^4)^p \, dx\)

Optimal. Leaf size=23 \[ \frac {\left (a+b x^4\right )^{p+1}}{4 b (p+1)} \]

[Out]

1/4*(b*x^4+a)^(1+p)/b/(1+p)

________________________________________________________________________________________

Rubi [A]  time = 0.00, antiderivative size = 23, normalized size of antiderivative = 1.00, number of steps used = 1, number of rules used = 1, integrand size = 13, \(\frac {\text {number of rules}}{\text {integrand size}}\) = 0.077, Rules used = {261} \[ \frac {\left (a+b x^4\right )^{p+1}}{4 b (p+1)} \]

Antiderivative was successfully verified.

[In]

Int[x^3*(a + b*x^4)^p,x]

[Out]

(a + b*x^4)^(1 + p)/(4*b*(1 + p))

Rule 261

Int[(x_)^(m_.)*((a_) + (b_.)*(x_)^(n_))^(p_), x_Symbol] :> Simp[(a + b*x^n)^(p + 1)/(b*n*(p + 1)), x] /; FreeQ
[{a, b, m, n, p}, x] && EqQ[m, n - 1] && NeQ[p, -1]

Rubi steps

\begin {align*} \int x^3 \left (a+b x^4\right )^p \, dx &=\frac {\left (a+b x^4\right )^{1+p}}{4 b (1+p)}\\ \end {align*}

________________________________________________________________________________________

Mathematica [A]  time = 0.01, size = 23, normalized size = 1.00 \[ \frac {\left (a+b x^4\right )^{p+1}}{4 b (p+1)} \]

Antiderivative was successfully verified.

[In]

Integrate[x^3*(a + b*x^4)^p,x]

[Out]

(a + b*x^4)^(1 + p)/(4*b*(1 + p))

________________________________________________________________________________________

fricas [A]  time = 0.91, size = 25, normalized size = 1.09 \[ \frac {{\left (b x^{4} + a\right )} {\left (b x^{4} + a\right )}^{p}}{4 \, {\left (b p + b\right )}} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x^3*(b*x^4+a)^p,x, algorithm="fricas")

[Out]

1/4*(b*x^4 + a)*(b*x^4 + a)^p/(b*p + b)

________________________________________________________________________________________

giac [A]  time = 0.15, size = 21, normalized size = 0.91 \[ \frac {{\left (b x^{4} + a\right )}^{p + 1}}{4 \, b {\left (p + 1\right )}} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x^3*(b*x^4+a)^p,x, algorithm="giac")

[Out]

1/4*(b*x^4 + a)^(p + 1)/(b*(p + 1))

________________________________________________________________________________________

maple [A]  time = 0.00, size = 22, normalized size = 0.96 \[ \frac {\left (b \,x^{4}+a \right )^{p +1}}{4 \left (p +1\right ) b} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(x^3*(b*x^4+a)^p,x)

[Out]

1/4*(b*x^4+a)^(p+1)/b/(p+1)

________________________________________________________________________________________

maxima [A]  time = 1.15, size = 21, normalized size = 0.91 \[ \frac {{\left (b x^{4} + a\right )}^{p + 1}}{4 \, b {\left (p + 1\right )}} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x^3*(b*x^4+a)^p,x, algorithm="maxima")

[Out]

1/4*(b*x^4 + a)^(p + 1)/(b*(p + 1))

________________________________________________________________________________________

mupad [B]  time = 1.12, size = 21, normalized size = 0.91 \[ \frac {{\left (b\,x^4+a\right )}^{p+1}}{4\,b\,\left (p+1\right )} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

int(x^3*(a + b*x^4)^p,x)

[Out]

(a + b*x^4)^(p + 1)/(4*b*(p + 1))

________________________________________________________________________________________

sympy [A]  time = 3.36, size = 129, normalized size = 5.61 \[ \begin {cases} \frac {x^{4}}{4 a} & \text {for}\: b = 0 \wedge p = -1 \\\frac {a^{p} x^{4}}{4} & \text {for}\: b = 0 \\\frac {\log {\left (- \sqrt [4]{-1} \sqrt [4]{a} \sqrt [4]{\frac {1}{b}} + x \right )}}{4 b} + \frac {\log {\left (\sqrt [4]{-1} \sqrt [4]{a} \sqrt [4]{\frac {1}{b}} + x \right )}}{4 b} + \frac {\log {\left (i \sqrt {a} \sqrt {\frac {1}{b}} + x^{2} \right )}}{4 b} & \text {for}\: p = -1 \\\frac {a \left (a + b x^{4}\right )^{p}}{4 b p + 4 b} + \frac {b x^{4} \left (a + b x^{4}\right )^{p}}{4 b p + 4 b} & \text {otherwise} \end {cases} \]

Verification of antiderivative is not currently implemented for this CAS.

[In]

integrate(x**3*(b*x**4+a)**p,x)

[Out]

Piecewise((x**4/(4*a), Eq(b, 0) & Eq(p, -1)), (a**p*x**4/4, Eq(b, 0)), (log(-(-1)**(1/4)*a**(1/4)*(1/b)**(1/4)
 + x)/(4*b) + log((-1)**(1/4)*a**(1/4)*(1/b)**(1/4) + x)/(4*b) + log(I*sqrt(a)*sqrt(1/b) + x**2)/(4*b), Eq(p,
-1)), (a*(a + b*x**4)**p/(4*b*p + 4*b) + b*x**4*(a + b*x**4)**p/(4*b*p + 4*b), True))

________________________________________________________________________________________